home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Completions / Perl Tutorial .pl < prev    next >
Encoding:
Text File  |  1998-04-16  |  2.3 KB  |  99 lines  |  [TEXT/ALFA]

  1.           Perl Mode Completions
  2.  
  3. Use the 'back-quote' key to jump to the next completion, or just position the 
  4. cursor appropriately, and then hit the completion invoking key ('cmd-tab' 
  5. --default, 'tab' --alternative set).
  6.  
  7. (a) Here are some typical uses of electric completions:
  8.  
  9.     for◊
  10.  
  11.     foreach◊
  12.  
  13.     while◊
  14.     
  15.     if◊
  16.     
  17.     else◊
  18.     
  19.     elsif◊
  20.     
  21.     do◊
  22.     
  23.     split◊
  24.     
  25. (b) These are shortcuts for common perl 'phrases'
  26.     
  27.     o'd◊
  28.     
  29.  
  30. (c) When you type a perl scalar, you can add or remove the leading "$" by
  31.     pressing cntrl-4 (i.e. the key that shifts to '$').
  32.     
  33.     type <cntrl-4> several times:
  34.     
  35.     somePerlScalarVar◊
  36.     
  37.     There is a similar binding for a perl hash (associative array):
  38.     
  39.     type <cntrl-2> several times:
  40.     
  41.     somePerlHash◊
  42.     
  43. (d) There is also some help available to save typing or mispelling 
  44.     variable names that have already been used at least once.
  45.     
  46.     First let's provide a group of identifiers:
  47.     
  48.     @evcode $evcode @evid *evid $evid @evmask $layout *rowParams 
  49.     %subSection $suffix *tableParams $target 
  50.         
  51.     Now we'll provide examples that extend the first few characters of 
  52.     a indentifier into the full name:
  53.     
  54.     $evc◊
  55.     
  56.     $lay◊
  57.     
  58.     ev◊
  59.     
  60.     
  61.     These examples are different, invoke an expansion (usually cmd-space) 
  62.     on the following identifier anacronyms:
  63.     
  64.     rp◊
  65.     
  66.     tp◊
  67.     
  68.     ss◊
  69.     
  70. (e) After you have entered a lot of code, it can be useful to look at all the 
  71.     identifiers you have used to check for mispelling. There is a Tcl proc 
  72.     that will collect all the identifiers used, sort them alphabetically 
  73.     (disregarding leading $, @, %, and * symbols), and place them on the 
  74.     clipboard. Try it out:
  75.     
  76.     Hilite this word and type Cmd-L: identifiersToScrap_Perl
  77.     
  78.     Note: you would usually enter this via the command line (just invoke,
  79.     <opt-x>, type the some of the command, and use 'tab' completion).
  80.     
  81.     After doing the above, just paste here (Cmd-V):
  82.     ◊
  83.     
  84. (d) It is now possible to use the Tcl shell to invoke MacPerl in a command 
  85.     line fashion. A new "unix shell" like command has been added to help out. 
  86.     Here is an example;
  87.     
  88.         Welcome to Alpha's Tcl shell.
  89.         «Alpha ƒ.» alias sdf [getfile]    
  90.     
  91.     you are presented with a file dialog with which you locate the perl source 
  92.     file 'sdf'. The shell remebers this path, and allows you to make the 
  93.     following call:
  94.     
  95.         «Alpha ƒ.» perl sdf -h
  96.  
  97.     (note that the ouput appears in the shell window).
  98.     
  99.